home *** CD-ROM | disk | FTP | other *** search
/ Windows Game Programming for Dummies (2nd Edition) / WinGamProgFD.iso / pc / DirectX SDK / DXSDK / samples / Multimedia / VBSamples / Misc / DXSetup / message.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  2001-10-08  |  1.6 KB  |  54 lines

  1. VERSION 5.00
  2. Begin VB.Form frmMessage 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    ClientHeight    =   900
  5.    ClientLeft      =   1065
  6.    ClientTop       =   1995
  7.    ClientWidth     =   5340
  8.    ClipControls    =   0   'False
  9.    ControlBox      =   0   'False
  10.    BeginProperty Font 
  11.       Name            =   "MS Sans Serif"
  12.       Size            =   8.25
  13.       Charset         =   0
  14.       Weight          =   700
  15.       Underline       =   0   'False
  16.       Italic          =   0   'False
  17.       Strikethrough   =   0   'False
  18.    EndProperty
  19.    HasDC           =   0   'False
  20.    Icon            =   "message.frx":0000
  21.    LockControls    =   -1  'True
  22.    MaxButton       =   0   'False
  23.    MinButton       =   0   'False
  24.    NegotiateMenus  =   0   'False
  25.    ScaleHeight     =   900
  26.    ScaleWidth      =   5340
  27.    ShowInTaskbar   =   0   'False
  28.    Begin VB.Image imgMsg 
  29.       Height          =   480
  30.       Left            =   270
  31.       Picture         =   "message.frx":0442
  32.       Top             =   210
  33.       Width           =   480
  34.    End
  35.    Begin VB.Label lblMsg 
  36.       AutoSize        =   -1  'True
  37.       Caption         =   "*"
  38.       Height          =   195
  39.       Left            =   945
  40.       TabIndex        =   0
  41.       Top             =   360
  42.       Width           =   4110
  43.       WordWrap        =   -1  'True
  44.    End
  45. Attribute VB_Name = "frmMessage"
  46. Attribute VB_GlobalNameSpace = False
  47. Attribute VB_Creatable = False
  48. Attribute VB_PredeclaredId = True
  49. Attribute VB_Exposed = False
  50. Option Explicit
  51. Private Sub Form_Load()
  52.     SetFormFont Me
  53. End Sub
  54.